home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr02 / pfroix.zip / IMPORT.TXT < prev    next >
Text File  |  1993-02-17  |  23KB  |  540 lines

  1. Data Imports from PRODIGY, QUICKEN, SCHWAB and Others
  2.  
  3. PFROI can import data from "quote/comma" delimited files into 
  4. transaction and price history records.  The required data format is 
  5. covered in the user manual under the "Import" command (Alt+I) for each 
  6. record type. 
  7.  
  8. PFROI also can directly import price record text files from PRODIGY's 
  9. "Quote Track" and can furthermore import portfolio data from text files 
  10. generated by QUICKEN and other portfolio management programs.  This 
  11. latter ability enables users to transfer their investment records from 
  12. these less comprehensive programs to PFROI and CAPTOOL. These imports 
  13. are accomplished by using a "translate" file (file extension ".XLT") 
  14. which tells PFROI where to find each data element in the source text 
  15. file. Following import you may need to edit the data to delete 
  16. extraneous records or fill in empty data fields.  
  17.  
  18.  
  19. PRODIGY Price Imports
  20. ---------------------
  21. These instructions reflect PRODIGY changes made Sept. 1992, superceding 
  22. prior instructions for Prodigy price imports. To import prices from 
  23. PRODIGY perform the following steps: 
  24.  
  25. 1) Run Prodigy. From main Prodigy Menu "JUMP" to "QUOTE TRACK".  (During 
  26. the change-over select "Quote Track" option on the resulting entry banner 
  27. screen). 
  28.  
  29. 2) Select the "FILE" option on the Quote Track screen. 
  30.    
  31.    a) If this is your first use of Quote Track you will need to create
  32.    a Quote Track ticker symbol file.  Select "New" on the "FILE" sub-menu
  33.    and enter up to 15 ticker symbols into QUOTE TRACK 1.  If you have
  34.    more symbols, repeat this process for QUOTE TRACK 2.  Subsequently
  35.    you may revise these files using the "Edit" option.
  36.  
  37.    b) Select the "Open" option on the FILES sub-menu, and specify QUOTE 
  38.    TRACK 1 (or QUOTE TRACK 2).  This will initiate the Prodigy quote 
  39.    retrieval process. 
  40.  
  41.    c) Once quotes appear on the screen, select the "FILES" option again 
  42.    and then select "Report Settings" on the FILES sub-menu. Configure 
  43.    output formats as follows: 
  44.  
  45.      1) RANGE  :  "Entire List"
  46.      2) REPORT TYPE :  "Current Prices" 
  47.      3) DESTINATION :  "File"
  48.  
  49.         "File Settings" should be:
  50.  
  51.           File Type:        Delimited    (IMPT!)
  52.           Column Headings:    Yes       
  53.           Filename:        QTRACK01.CSV 
  54.  
  55.    d) Upon specifying the destination filename, select the "Save & Print" 
  56.    option.  If you've previously used the file you may "overwrite" it.  Wait 
  57.    while the quotes are output to the file you've specified.  These files are 
  58.    saved in the PRODIGY subdirectory. 
  59.  
  60. Upon completion of quote file output EXIT Prodigy. 
  61.  
  62. 3) After you've exited Prodigy, run PFROI or CAPTOOL.  Enter the "Price
  63. History" records (on the PFROI "Auxiliary Records" sub-menu) and move the
  64. cursor to the last record.  Execute the "Import" command (Alt+I).  
  65. Respond to the "Import File: " prompt as follows:
  66.  
  67.    Import File : C:\PRODIGY\QTRACK01.CSV/PRODIGY2.XLT<Enter>
  68.  
  69. where "PRODIGY2.XLT" is a "translate" file containing:
  70.  
  71. **PRICES**
  72. "SYMBOL",1
  73. 2,1,0,8/100,5,6,7,3
  74. COMMADELIM
  75.  
  76.  
  77. and where QTRACK01.CSV contains the quotes saved by Prodigy in a 
  78. quote-comma delimited format appearing as follows:
  79.  
  80. "SYMBOL","DATE","LAST","CHANGE","OPEN","HIGH","LOW","VOLUME","NOTE"
  81. "ASTA","09/12/92",15.25,1,14.5,15.5,14,2179500,"   "
  82. "BORL","09/12/92",46.375,-1.125,47.75,47.75,45.5,1462100,"   "
  83. "CHIR","09/12/92",50.5,0.5,50.5,51.75,50,275400,"   "
  84. "FMAGX","09/12/92",65.26,,,,,,"   "
  85. "VWIGX","09/12/92",9.97,,,,,,"   "
  86. "&SPX","09/12/92",419.58,-0.37,419.93,420.58,419.13,,"   "
  87. "&DJIA","09/12/92",3305.7,0.54,3303,3327.32,3285.44,,"   "
  88.  
  89. IMPORTANT!: If the quotes do not appear on screen or appear to be in error 
  90. this may be due to Prodigy having changed the format of their QTRACK output
  91. files.  You may have to modify the "translate" file (using your word 
  92. processing software) to accomodate the new format. 
  93.  
  94. Translate File Operations - PRODIGY2.XLT
  95. -------------------------               
  96. The "**PRICES**" in the FIRST line identifies this as a translate file for 
  97. price data.  The "SYMBOL" in the SECOND line is a "Key Word" for which 
  98. PFROI/CAPTOOL searches as it reads "QTRACK01.CSV". The "1" specifies that 
  99. PFROI/CAPTOOL start importing prices beginning with the 1st line following 
  100. the "Key Word".  The "COMMADELIM" on the FOURTH line indicates that the
  101. import file will be comma-delimited.  (If the "COMMADELIM" notation were
  102. omitted, then PFROI/CAPTOOL count character columns rather than delimited
  103. data elements).
  104.  
  105. The THIRD line provides the information used to do the actual data 
  106. translation.  PFROI/CAPTOOL price records have 8 data elements as follows: 
  107.  
  108.  1 :  Date.  The date is the second element on each line of QTRACK01.CSV
  109.       so PRODIGY2.XLT has a "2" entry for this field.
  110.      
  111.  2 :  Symbol.  The QTRACK01.CSV symbol entry is the first element, so the 
  112.       PRODIGY2.XLT file has a "1". 
  113.  
  114.  3 :  Type field.  Prodigy doesnt specify a type, so the PRODIGY2.XLT 
  115.       entry is "0".
  116.  
  117.  4 :  Volume. The QTRACK01.CSV entry for volume is the 8th element, so the 
  118.       PRODIGY2.XLT entry is "8".  Furthermore because PFROI/CAPTOOL report 
  119.       volume in hundreds the "8" is followed by "/100" to indicate the volume 
  120.       is to be divided by 100. 
  121.  
  122.  5,6,7,3 : Open, High, Low, Last.  The QTRACK01.CSV element positions for 
  123.       these item are 5,6,7, & 3 hence these are the corresponding entries 
  124.       in the PRODIGY2.XLT file. 
  125.  
  126. Text File in Lieu of "Delimited" File Type
  127. ------------------------------------------
  128. To import from Prodigy Quote Track files saved in "Text" file type (for PFROI 
  129. V3.8c/earlier) use the old translate file (PRODIGY.XLT) containing: 
  130.  
  131. **PRICES**
  132. "PRODIGY",8
  133. 0,1,0,64/100,32,42,52,9
  134.  
  135. HINT: If you obtain Prodigy quotes over a weekend, Prodigy uses the current 
  136. day's date, even though the quotes were Friday's quotes.  Some users may wish 
  137. to edit the date in the QUOTES.TXT file before importing to reflect the 
  138. correct quote date. 
  139.  
  140.  
  141. QUICKEN Portfolio Imports
  142. -------------------------
  143. To transfer your portfolio data from Quicken to PFROI or CAPTOOL perform 
  144. the following steps: 
  145.  
  146. 1) Run Quicken.  Select Quicken's "Reports" option. Select "Investment 
  147.    Reports" from the resulting sub-menu.  Select "Investment Transactions" 
  148.    from the resulting sub-sub-menu. Edit the Quicken report start date to 
  149.    correspond to the date of the very first transaction in your Quicken 
  150.    portfolio. Select the "Don't Subtotal" option and hit the "Enter" key 
  151.    until the transaction report appears on the screen.  Hit the "F8" key 
  152.    to execute the "Print" command.  At the "Print" menu select option #4 
  153.    to print to "Disk (ASCII)".  Specify 80 column wide output, and 
  154.    (IMPORTANT!) make sure that the date range for the report spans more 
  155.    than one calendar year (e.g. 12/01/91 to 06/01/92) so as to force Quicken 
  156.    to include the year portion on the transaction dates.  Select "Current" 
  157.    for "Accounts" selection (Quicken changes report output format if you 
  158.    select "All" or "Selected"). For the filename, type in "QKNTRANS.TXT" to 
  159.    create a disk file of the same name which appears similar as follows when 
  160.    viewed with a text editor: 
  161.  
  162.                                    INVESTMENT TRANSACTIONS REPORT
  163.                                        1/22/89 Through 9/22/91
  164. portfolio                                                                
  165. 9/22/91
  166.                                                                                 
  167.   Date    Action   Secur    Categ    Price     Shares     Commssn     Cash
  168. -------- ------- --------- ------ ---------- ---------- ---------- ---------- 
  169.  
  170.          BALANCE  1/21/89                                                0.00 
  171.  
  172.  1/22/89 XIn        -Cash- [portfo                                   5,000.00 
  173.  1/28/89 Buy     xxx corp             20.375   196.319              -4,000.00 
  174.  2/ 3/89 IntInc     -Cash- Investment Interest Inc                     140.00
  175.  2/ 8/89 MiscExp    -Cash-                                             -15.35 
  176.  3/ 8/89 RtrnCap xxx corp                                              100.25
  177.  7/ 8/89 Div     xxx corp  Dividend                                    135.75
  178.  7/10/89 Buy     yyy                      10       100              -1,000.00 
  179.  7/12/89 XIn        -Cash- [portfo                                   4,500.00 
  180.  7/14/89 CGLong  xxx corp  Long Term Cap Gain Dist                     230.00
  181.  7/26/89 CGShort xxx corp  Short Term Cap Gain Dist                     35.50
  182.  8/20/89 StkSpli xxx corp                    2:1
  183.  8/22/89 BuyX    zzz                      11       200              -2,200.00
  184. 10/ 5/89 ReinvDi yyy                      15     2.456                 -36.84
  185.  9/19/90 ShrsIn  Xyz corp                 10       100              -1,000.00
  186.  9/21/90 ShrsIn  abc corp                 25       100              -2,500.00
  187.  9/22/90 Buy     Xyz corp                 11       150              -1,650.00
  188.  9/22/90 XIn        -Cash- [portfo                                   2,000.00
  189.                                                                    ----------
  190.          TOTAL  1/22/89 -  9/22/91                                   6,476.15
  191.  
  192.  
  193.    (Note: The two right-most fields in this example have been deleted to
  194.    avoid "wrap-around" on 80 column wide printers.)
  195.  
  196.  
  197. 2) Escape back to the Quicken Investment Report menu. Now select
  198.    "Portfolio Values" from the menu.  Select a valuation date and
  199.    generate a valuation report. (Suggested dates: Year-end for every
  200.    year since portfolio started).  Once the valuation report is on
  201.    screen, execute the "F8" to print to a text file as was done for the
  202.    transactions.  Repeat the process for each valuation date you wish to
  203.    transfer. Since Quicken overwrites rather than append to print files
  204.    you must specify a new filename for each valuation. Use filenames
  205.    such as "QKNVAL1.TXT", "QKNVAL2.TXT", etc.  The Quicken Valuation
  206.    output should appear as follows:
  207.  
  208.                                 PORTFOLIO VALUE REPORT
  209.                                    As of 9/24/91
  210.  
  211.  
  212.  
  213.      Security         Shares   Curr Price   Cost Basis  Gain/Loss   Balance
  214. -------------------- ---------- ----------   ---------- ---------- -----------
  215. abc corp                 100.00         33     2,500.00     800.00    3,300.00
  216. Xyz corp                 200.00     12 1/2     2,150.00     350.00    2,500.00
  217. -Cash-                 1,675.00          1     1,675.00       0.00    1,675.00
  218.                                              ---------- ---------- -----------
  219. Total Investments                              6,325.00   1,150.00    7,475.00
  220.                                              ========== ========== ===========
  221.  
  222. 3) Exit Quicken to DOS and start PFROI or CAPTOOL.  Go to the PFROI main
  223.    menu and execute the "Load" command.  Specify an unused filename so
  224.    as to create new portfolio file.
  225.  
  226. 4) Enter the "Transactions" records screen.  It should be empty of data
  227.    since this is a new portfolio.  Execute the "Alt+I" Import command.
  228.    Respond to the file prompt as follows: 
  229.     
  230.      File: C:\QKN\QKNTRANS.TXT/QUICKEN.XLT<Enter>
  231.  
  232.    This tells PFROI to import data from the QKNTRANS.TXT file that you 
  233.    just generated with Quicken.  The "/QUICKEN" specifies that the file 
  234.    "QUICKEN.XLT" should be used to translate the data from QKNTRANS.TXT
  235.    to the internal data format used for PFROI transactions.  Upon 
  236.    hitting the "Enter" key you should see your quotes appear.  
  237.    
  238.    Carefully review the transactions for accuracy.  You should note that 
  239.    the ticker symbols were taken from the first seven characters of the 
  240.    Quicken description field. This is necessary because Quicken does not 
  241.    display ticker symbols on their transaction reports.  You can easily 
  242.    change these symbols to their correct value later using the PFROI 
  243.    "Change Symbol" utility (See #7 below).  Make note of the current
  244.    symbols that will need changing before proceeding. 
  245.    
  246.    Look for for "split" type transactions. You must edit these to enter 
  247.    the correct values in the "Quantity" field because Quicken uses a 
  248.    different notation for splits.  Note also that tax lot fields are 
  249.    also blank because Quicken does not specify tax lot methodology in 
  250.    their transaction report.  You will need to assign tax lot numbers if 
  251.    you are using other than average cost bases. 
  252.  
  253.  
  254. 5) Escape PFROI transactions and go to the PFROI valuation records.  
  255.    Execute the Alt+I (Import) command. Respond to the file prompt as 
  256.    follows: 
  257.     
  258.      File: QKNVAL1.TXT/QUICKEN.XLT<Enter>
  259.  
  260.    Repeat the process until all the Quicken valuation files you created 
  261.    have been imported. 
  262.  
  263.    Execute the "Alt+M" Multi-Create command and specify the first 
  264.    valuation date as the start date.  This causes PFROI to re-compute 
  265.    the cost bases and positions for each one of the valuations.  Lookout
  266.    for any valuation marked with an asterisk.  This indicates a price is 
  267.    missing.  In this case, execute "Alt+R" and key in the missing 
  268.    prices. 
  269.  
  270. 6) Execute Alt+F, and select the "saVe" option to save your new 
  271.    portfolio file. 
  272.  
  273. 7) Escape PFROI valuations and select the Utilities option on the main
  274.    PFROI menu.  Select the "Change Security Symbol" option. Specify the 
  275.    portfolio file just created as the target portfolio file.  Change the 
  276.    symbols for all the securities that did not have the correct ticker 
  277.    symbols upon conversion. 
  278.  
  279. IMPORTANT!: If the transactions or valuations do not appear on screen or 
  280. appear to be in error this may be due to a change in the Quicken report-
  281. ing format. You may have to modify the "translate" file "QUICKEN.XLT" 
  282. (using your word processing software) to accomodate the new format.  
  283. "QUICKEN.XLT" is a text file containing the following information: 
  284.  
  285. **TRANSACTIONS**
  286. "Date",3
  287. 1,10,18,0,18,47,68,59,0,0,37
  288. {TAC translations}
  289. SHRSIN=RCV
  290. SHRSOUT=DLV
  291. BUY=BUY
  292. BUYX=BYD
  293. CGLONG=CGD
  294. CGLONGX=CGW
  295. CGSHORT=SGD
  296. CGSHORTX=SGW
  297. DIV=DV+
  298. DIVX=DVW
  299. INTINC=IN+
  300. MARGINT=IN-
  301. MISCEXP=EXP
  302. RTRNCAP=ROC
  303. STKSPLIT=SP+
  304. REINVDIV=DRI
  305. REINVLG=CGR
  306. REINVSH=SGR
  307. SELL=SLL
  308. SELLX=SLW
  309. XIN=DPF
  310. XOUT=WDF
  311. -Cash-=**CASH***
  312. *******
  313. **VALUATIONS**
  314. "VALUE",7
  315. 0,1,1,22,32,0,67,43
  316. -Cash-=**CASH***
  317.  
  318.  
  319. There are two parts to the QUICKEN.XLT file.  The first pertains to 
  320. transactions and is identified by the "**TRANSACTIONS**" notation.  The 
  321. second part pertains to valuations and is identified by the 
  322. "**VALUATIONS**" notation.  The second line of each section contains a 
  323. "Key Word" followed by a comma and a number. PFROI searches for the key 
  324. word as it reads the import file and commences importing the specified 
  325. number of lines following the occurence of the key word. 
  326.  
  327. The third line, e.g.: "1,10,18,0,18,47,68,59,0,0,37", provides the 
  328. information used to do the actual data translation.  
  329.  
  330. The transaction import specifications have 11 fields as follows:
  331.  
  332.   1: Date.  The Quicken date starts in column #1, so there is a
  333.      "1" here.
  334.  
  335.   2: TAC.  The Quicken transaction code begins in the 10th screen
  336.      column so there is a "10" here.
  337.  
  338.   3: Symbol.  Quicken does not report a symbol, so the first word  
  339.      of the "Security" field is used instead.  This field starts 
  340.      at the 18th column so an "18" is used.
  341.  
  342.   4: Lot Number.  Quicken doesnt report tax lot numbers so this 
  343.      field is specified with a zero.
  344.  
  345.   5: Description.  This is column #18 in the Quicken report.
  346.  
  347.   6: Quantity.  Quicken col 47.
  348.  
  349.   7: Amount. Quicken col 68.
  350.  
  351.   8: Com/Fee. Quicken col 59.
  352.  
  353.   9: Est. Tax.  Not avail. in Quicken.
  354.  
  355.  10: X-Rate. Not avail. in Quicken.
  356.  
  357.  11: Price. Quicken col 37.
  358.  
  359. The field translation specifications are followed by "Equates" which are 
  360. used to translate Quicken transaction codes to PFROI TAC codes.  Symbol 
  361. equates may also be included here as is done here for "-CASH-" to 
  362. translate symbols. 
  363.  
  364. Quicken/Windows
  365. ---------------
  366. The Windows version of Quicken outputs transactions in a slightly 
  367. different format.  If you have this version of Quicken, specify 
  368. 120 column output and modify the third line of the XLT file to 
  369. appear as follows (or use QKNWIN.XLT) :
  370.  
  371. **TRANSACTIONS**
  372. "Date",3
  373. 4,13,22,0,22,52,77,65,0,0,40          <-----
  374. {TAC translations}
  375.  
  376.  
  377. IMPORTING FROM CYBER-SCAN CREATED DTN FILES
  378. -------------------------------------------
  379. For those who wish to obtain near real-time quotes via a satellite feed
  380. DTN provides a cost-effective alternative.  CYBER-SCAN, Inc. (Rt. 4, Box
  381. 247, Buffalo, MN 55313,  Tele: 612-682-4150) provides software which can
  382. dump DTN quote data onto ASCII disk files which can be imported into 
  383. CAPTOOL as follows:
  384.  
  385. 1)  Run Cyber-Scan QUOTE COMMANDER program.
  386.  
  387. 2)  Select "Automatic Dump" option:
  388.     a) Set Time, or hit <Enter> key twice for immediate dump of data.
  389.     b) Select "ASCII dump type.  Data will be placed in an ASCII file 
  390.        named mo-dy-yr.ASC where "mo-dy-yr" is the current day's date.
  391.  
  392. 3)  Exit QUOTE COMMANDER when dump is finished.
  393.  
  394. 4)  Run CAPTOOL, enter CAPTOOL "Price History" Records:
  395.     a) Select "Portfolio Management" on main CAPTOOL menu.
  396.     b) Select "Auxiliary Records" on PFROI menu.
  397.     c) Select "Price History" on Auxiliary menu.
  398.  
  399. 5)  On CAPTOOL "Price History" screen:
  400.     a) Execute "Alt+I" (import) command.
  401.     b) At prompt for filename type in:
  402.  
  403.         File: C:\DTN\mo-dy-yr.ASC/CYBERSTK.XLT
  404.  
  405.     where "mo-dy-yr" is the current day's date and CYBERSTK.XLT
  406.     is the "translate" file for stocks.  Use CYBERFND.XLT for 
  407.     funds and CYBERBND.XLT for bonds.
  408.  
  409. CYBERSTK.XLT, CYBERFND.XLT & CYBERBND.XLT contents:
  410.  
  411. **PRICES**  {stocks}
  412. "",0
  413. 0,1,0,49,0,11,20,29
  414.  
  415. **PRICES**  {funds}
  416. "",0
  417. 0,1,0,0,0,11,11,11
  418.  
  419. **PRICES**  {bonds}
  420. " ",0
  421. 0,1,0,0,0,29,29,29
  422.  
  423.  
  424. IMPORTING FROM RJT SYSTEMS "QUOTE EXPRESS" FILES
  425. ------------------------------------------------
  426. If you have DTN daily quote files captured using "Quote Express"
  427. from RJT Systems, Inc. (1049 SW Baseline #200, Hillsboro, OR 
  428. 97123, Ph:1-800-729-5037) you may import them by creating an 
  429. "XLT" file (see QEXPRESS.XLT) with contents as follows: 
  430.  
  431. **PRICES**
  432. " ",0
  433. 2,1,0,7,3,4,5,6
  434. COMMADELIM
  435. YYMMDD=MM/DD/YY
  436.  
  437. You may dump Quote Express data to an importable text file and
  438. import that file into CAPTOOL as follows:
  439.  
  440. 1) From the main Quote Express screen, select the "Download" 
  441.    option, using the "Current List", "Defaults Only" sub-options.
  442.    The price data will be sent to a comma delimited ASCII text
  443.    file named "OUTPUT".
  444.  
  445. 2) Exit Quote Express and start CAPTOOL. Enter the CAPTOOL "Price 
  446.    History" records (from Time Trends menu or PFROI "Auxiliary"
  447.    sub-menu).  Execute the "Import" command (Alt+I), responding
  448.    to the file prompt as follows:
  449.  
  450.      Import File : C:\QE\OUTPUT/QEXPRESS.XLT<Enter>
  451.  
  452.  
  453.  
  454. IMPORTING FROM WORDEN ASCII PRICE FILES
  455. ---------------------------------------
  456. Worden (Telechart 2000) Ascii price files appear as follows, with one
  457. stock per file:
  458.  
  459. MRK,880609,56.8750,55.7500,56.1250,16808
  460. 880610,56.6250,55.5000,55.7500,8391
  461. 880613,55.5000,54.6250,55.0000,5595
  462.  
  463. Note that the file does not include the symbol on each line
  464. of data and thus requires conversion to add this item so the
  465. file appears as follows:
  466.  
  467. MRK,880609,56.8750,55.7500,56.1250,16808
  468. MRK,880610,56.6250,55.5000,55.7500,8391
  469. MRK,880613,55.5000,54.6250,55.0000,5595
  470.  
  471. The utility program WORDENX.EXE will perform this function.  Once
  472. converted, import the resulting modified file into the CAPTOOL
  473. Price History records using the WORDEN.XLT translate file:
  474.  
  475.  Import File:  C:\W_ASCII/WORDEN.XLT
  476.  
  477. where "W_ASCII" is the converted Worden ASCII file.
  478.  
  479. Note: For WORDENX.EXE conversion to work properly, the ticker
  480. symbol must appear as the first symbol in the first line of the
  481. WORDEN file.  If this ticker is missing, add it with your text
  482. editor program before performing the conversion.
  483.  
  484. IMPORTING FROM META-STOCK ASCII FILES
  485. -------------------------------------
  486. META-STOCK ASCII files are similar to the Worden file described above, 
  487. except that there is no ticker symbol in the file.  By specifying 
  488. "0" in the METASTK.XLT file for the symbol position, the filename prefix 
  489. will be used for the symbol when importing into Price history: 
  490.  
  491. **PRICES**
  492. " ",0
  493. 1,0,0,6,0,3,4,5
  494. COMMADELIM
  495. YYMMDD=MM/DD/YY
  496.  
  497. Free Financial Network
  498. ----------------------
  499. The Free Financial Network (212-838-6324 voice, 212-752-8660 bbs) 
  500. provides a downloadable daily file of quotes on about 5000 issues.   
  501. This may be imported into PFROI price history records using the 
  502. translate file FFN.XLT.  Before importing, enter the import date in the 
  503. final price history record, then execute the Alt+I command. Only those 
  504. issues for which there exists ticker symbols in the currently loaded 
  505. Master Security List will be imported. 
  506.  
  507. Other Imports
  508. -------------
  509. Users who wish to import data from other price sources and/or portfolio 
  510. managers may construct their own ".XLT" files using the prior examples 
  511. for guidances.  
  512.  
  513.  
  514. Schwab Account Access Link
  515. --------------------------
  516. Charles Schwab & Co. provides a service called "Schwab Link" to facilite 
  517. computerized trading by professional money managers and financial 
  518. advisors (contact C. Schwab Financial Advisor Service 1-800-648-6021 for 
  519. details). 
  520.  
  521. Schwab Link enables the user to download Transaction and Position record 
  522. files which may then be imported into CAPTOOL Global Investor during 
  523. batch valuations, reducing data input to a minimum.  See the file 
  524. IMPORT2.TXT (CAPTOOL Global only) for details on this procedure.
  525.  
  526. Shareholder Services Corp.
  527. --------------------------
  528. Shareholder Services Corp. (SSC) also permits professional money managers 
  529. to download text files containing records of trade transactions made 
  530. through SSC.  These may be imported into CAPTOOL Global Investor in the 
  531. same fashion as for Schwab descibed above.  
  532.  
  533. For details on this service contact 1-800-582-8585, or write Attn: Bob 
  534. Choi, Shareholder Services Corp., 9191 Towne Centre Dr., Ste. 222, San 
  535. Diego, CA  92122,  Fax: 619-453-5510.
  536.  
  537. See the file IMPORT2.TXT (CAPTOOL Global only) for details on this 
  538. procedure. 
  539.  
  540.